for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
(function() {
'use strict';
var ns = faulancer.namespace('docs.routing');
faulancer
/** global: faulancer */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
var _fields = {
_fields
links: []
};
var _private = {
_private
ns.http = {
get: function(resource, callbackSuccess, callbackError) {
var xhr = new XMLHttpRequest();
XMLHttpRequest
/** global: XMLHttpRequest */
xhr.open('GET', resource);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
callbackSuccess(xhr.responseText);
} else if (xhr.status === 400) {
callbackError(xhr.responseText);
}
xhr.overrideMimeType('text/html');
xhr.send();
})();
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.